AssetWise CONNECT Edition Implementation Guide

To Configure WSG

WSG must be configured in order to incorporate Windows Integrated Authentication.

Follow these steps to enable Windows Authentication for WSG.

  1. On the ALIM Web Server, navigate to the WSG installation folder, for example, C:\inetpub\wwwroot\wsg .
  2. Using a text editor, open the web.config configuration file.
  3. In the <system.web> section, do the following:
    1. Locate the <authentication mode="none"/> attribute, and change its value to "Windows"
    2. Set <identity impersonate="true" />
    For example,
    <system.web>
       <authentication mode="Windows" />
       <identity impersonate="true" />
       <globalization uiCulture="auto" culture="auto" />
       >httpRuntime maxUrlLength="2048" requestValidationMode="2.0" relaxedUrlToFileSystemMapping="true" enableVersionHeader=false" targetFramework="4.6.1"/>
    </system.web>
  4. Save and close the file, and then close the text editor.